@charset "utf-8";
/*************** DEFAULT CSS ***************/
:root {
    --body-font: "Montserrat", sans-serif;
    --body-font-Size: 16px;
    --body-color: #fff;
    --primary-color: #0a80a8;
    --secondary-color: #2ab318;
	--color-01:#042531;
	--color-02:#063746;
	--color-03:#1a3843;
    --color-04:#20b463;
    --white: #fff;
  
    
}
body{
 	font-family: var(--body-font);
	font-size:var(--body-font-Size);
	font-style: normal;
	line-height: normal;
	font-weight:400;
	color: var(--body-color);
	text-decoration: none;
	margin:0px;
	-webkit-font-smoothing: antialiased;
	padding:0;
	font-optical-sizing: auto;
	background-color: var(--color-01);
}
html{ scroll-behavior: smooth;}
* {-webkit-box-sizing: border-box;-mox-box-sizing: border-box;box-sizing: border-box;}
::selection {background: var(--body-color); /* Safari */color:var(--primary-color);}
::-moz-selection {background: var(--body-color); /* Safari */color:var(--primary-color);}
a {color:var(--primary-color);text-decoration: none;-webkit-transition: all 300ms ease-in-out;-moz-transition: all 300ms ease-in-out;transition: all 300ms ease-in-out;}
a:hover {color: var(--primary-color);}
p {margin:0 0 30px 0;clear:left;padding:0;line-height: 27px;}
ul{padding: 0px; margin: 0 0 25px;}
ul li{list-style: none;}
/******* Headings Style *******/
h1 {font-size: 43px;}
h2 {font-size: 35px;}
h3 {font-size: 20px;}
h4 {font-size: 17px;}
h5 {font-size: 15px;}
h6 {font-size: 13px;}
h1, h2, h3, h4, h5, h6 {margin:0 0 20px 0;padding:0;font-weight:normal;}	
hr {margin:40px  0 60px 0;height:1px;border:0;border-top:1px solid #c1c1c1;border-bottom:1px solid #c1c1c1;float:left;width:100%;position:relative;}
img{border:0; max-width: 100%;}	
a img {border: 0;}
/*************** PRELOADER ***************/
#preloader {position: fixed;top:0;left:0;right:0;bottom:0;background-color:var(--color-01); z-index:999999;}
#status {width:100%;height:100%;position:absolute;left:0;top:0;background-image:url(../images/elearners-logo.svg);  background-size: 320px;
background-repeat:no-repeat;background-position:center;margin:0;}

/*************** COLUMS AND ROWS ***************/
main{ position:relative;	}
.row{ width: 100%; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap;}
.justify-content-center { justify-content: center; }
.space-between{ justify-content: space-between; }
.justify-content-flex-end{ justify-content: flex-end }
.clearfix{width:100%;height:100px;margin:0;padding:0;display:block;}
.container{	width:1320px;margin:0 auto;}
.fullwidth{	width:100%;display:block;}
.two-col{flex:0 0 48%; }
.three-col{	flex:0 0 31%;}
.four-col{flex:0 0 22%;}
section {width: 100%; display: block;position: relative;}
aside { flex:0 0 25%; margin: 0; padding: 0;}
summary { flex:0 0 70%; margin: 0; padding: 0;}
.list{padding: 0px;margin: 0 0 25px;display: flex;width: 100%;flex-direction: column;}
.list li{list-style: none;color: #3a4455;padding-left: 22px;margin-bottom: 6px;line-height: 24px;position: relative;}
.list li:after{position: absolute;content: '';width: 6px;height: 6px;border: 2px solid var(--primary-color);left: 0px;top: 8px;border-radius: 50px;}
.list li a{ color: #3a4455; }
.button-style a, .button-style-span {
	display: inline-block;
	position: relative;
	background-color: var(--secondary-color);
	padding: 15px 72px 15px 22px;
	border-radius: 0;
	color: var(--white);
	font-size: 14px!important;
	margin-bottom: 10px;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	text-transform: uppercase;
	font-weight: 700;
	border-radius: 10px;
}
.button-style a:before, .button-style-span:before{position:absolute;content:'';background-color: var(--primary-color);width: 52px;height: 100%;right: 0px;top: 0px;border-radius: 0 10px 10px 0; -webkit-transition: all 300ms ease-in-out;-moz-transition: all 300ms ease-in-out;transition: all 300ms ease-in-out;}
.button-style a:after, .button-style-span:after, header {
	-webkit-transition: all 300ms ease-in-out;-moz-transition: all 300ms ease-in-out;transition: all 300ms ease-in-out;
}
.button-style a:after, .button-style-span:after {
	color: var(--white);
	content: "\f061";
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	right: 12px;
	position: absolute;
	top: 11px;
	line-height: 28px;
	width: 28px;
	height: 28px;
	text-align: center;
	transition: .3s ease-in-out;
	transform: rotate(330deg);
	font-size: 16px;
}
.button-style a:hover:before, .button-style-span:hover:before { background-color: var(--secondary-color);}
.button-style a:hover, .button-style-span:hover {
	background-color: var(--primary-color);
	color: var(--white)!important;
	
}
.button-style a:hover:after, .button-style-span:hover:after {
	background-color: var(--gray-color);
	transform: rotate(0deg);
	color: var(--white)
}
.button-style-icon a i {
	font-size: 23px;
	background-color: #e90909;
	width: 36px;
	height: 36px;
	border-radius: 50px;
	text-align: center;
	line-height: 36px;
	margin-right: 9px
}
.button-style-icon a {
	font-size: 18px;
	font-weight: 600;
	background-color: var(--green-1);
	padding: 10px 46px 10px 15px
}
.button-style-02 a, .button-style-02 a:after {
	background-color: transparent;
	color: var(--white)
}
.text-center{text-align: center;}
.gap-1{gap:1%}
.gap-2{gap:2%}
.gap-3{gap:3%}
.gap-4{gap:4%}
.gap-5{gap:5%}
.gap-50, .gap-100{display: flex; width: 100%; height: 50px;}
.gap-100{ height: 100px;}



/*************** HOME PAGE CSS ***************/
header{
    padding: 20px 0px; top:-100px;
    -webkit-transition: all 300ms ease-in-out;-moz-transition: all 300ms ease-in-out;transition: all 300ms ease-in-out;
}
.header-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{ line-height: 0px;}
.logo img{
    width: 226px;
}
.right-header{
    display: flex;
    gap: 30px;
    align-items: center;
}
.right-header .call{
    display: flex;
    gap: 12px;
}
.right-header .call i{
    font-size: 24px;
    margin-top: 4px;
    color: var(--body-color);
}
.right-header .call .call-inn{
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 700;
    color: var(--body-color);
}
.right-header .call .call-inn span{
    font-size: 12px;
}
.whats-join{
    display: flex;
    gap: 15px;
    align-items: center;
}
.whats-join .whts-btn{
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    border-radius: 50px;
    color: var(--body-color);
    font-size: 28px;
    text-align: center;
    line-height: 47px;
}
.whats-join .whts-btn:hover{ background-color: var(--primary-color);}
.whats-join .join-btn{position: relative;background-color: var(--body-color);border-radius: 8px;font-size: 14px;font-weight: 700;color: var(--color-03);padding: 14px 45px 14px 20px;text-transform: uppercase;}
.whats-join .join-btn:after{ -webkit-transition: all 300ms ease-in-out;-moz-transition: all 300ms ease-in-out;transition: all 300ms ease-in-out; content: "\f061";font-family: 'Font Awesome 6 Free';font-weight: 900;right: 8px;position: absolute;top: 50%;margin-top: -13px;line-height: 28px;width: 28px;height: 28px;background-color: var(--white);border-radius: 50px;text-align: center;transition: .3s ease-in-out;transform: rotate(318deg);font-size: 19px;}
.whats-join .join-btn:hover:after{ background-color: var(--color-02);
    transform: rotate(360deg);
    color: var(--white);}
.whats-join .join-btn:hover{ background-color: var(--secondary-color); color: var(--body-color);}
.home-slider{ border-radius: 20px; overflow: hidden; position: relative; }
.certi-slogos{
    padding: 20px 0px;
}
.certi-slogos-wrap{
    background-color: var(--body-color);
    padding: 20px;
    border-radius: 20px;
}
.intro{
    padding: 50px 0px 80px;
}
.intro-wrap{
    display: flex;
    gap: 4%;
}
.intro-left{
    flex: 0 0 60%;
}
.head-cap{position: relative;font-size: 18px;font-weight: 700;background-image: url(../images/head-line.png);background-repeat: no-repeat;background-position: bottom left;padding-bottom: 25px;margin-bottom: 30px;}
.tittle-head{
    font-size: 34px;
    font-weight: 500;
}
.intro-left p{
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.intro-right{
    flex: 0 0 36%;
}
.prog-ofd{
    background-color: var(--primary-color);
    padding: 100px 0px;
}
.prog-box{
    border: 1px solid var(--body-color);
    display: block;
    border-radius: 20px;
}
.prog-img{
    padding: 30px;
    border-bottom: 1px solid var(--body-color);
}
.prog-cnt{
    padding: 30px;
	-webkit-transition: all 300ms ease-in-out;-moz-transition: all 300ms ease-in-out;transition: all 300ms ease-in-out;
	border-radius: 0 0 21px 21px;
}
.prog-cnt h3{
    color: var(--body-color);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}
.prog-cnt p{
    font-size: 16px;
    color: var(--body-color);
    line-height: 26px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0px;
}
.prog-cnt span{
	position: absolute;
    width: 55px;
    height: 55px;
    border: 1px solid var(--body-color);
    right: 10px;
    bottom: 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--body-color);
    transform: rotate(360deg);
	-webkit-transition: all 300ms ease-in-out;-moz-transition: all 300ms ease-in-out;transition: all 300ms ease-in-out;
}
.prog-box:hover .prog-cnt span{transform: rotate(1deg); background-color: var(--primary-color); border: 1px solid var(--primary-color); }
.prog-box:hover .prog-cnt{ background-color: var(--color-04);}

.text-sliding{
    overflow: hidden;
}
.scroll-left-right {-webkit-animation: scrollLeft 80s linear infinite;-moz-animation: scrollLeft 80s linear infinite;
animation: scrollLeft 80s linear infinite;-webkit-animation-fill-mode: forwards;-moz-animation-fill-mode: forwards;	animation-fill-mode: forwards;}
.scroll-right-left {-webkit-animation: scroll 80s linear infinite;-moz-animation: scroll 80s linear infinite;
animation: scroll 80s linear infinite;-webkit-animation-fill-mode: forwards;-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;}
.scroll-right-left h2, .scroll-left-right h2 {color: var(--body-color);font-size: 44px;margin-bottom: 0;display: flex;align-items: center;font-weight: 700;}
.scroll-animation {display: flex;flex-wrap: nowrap;white-space: nowrap;align-items: center;padding: 15px 0px;}
.text-sliding-wrap{border-bottom: 1px solid #354f59;}
.go-with-us{
    padding: 100px 0px;
    background-image: url(../images/bg1.png);
    background-position: center;
}
.go-with-us-wrap{
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
}
.go-with-us-box{
    flex: 0 0 33.3333333333%;
    text-align: center;
    background-image: url(../images/Easy-EMI.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    position: relative;
    z-index: 0;
    border-radius: 15px;
    overflow: hidden;
	-webkit-transition: all 300ms ease-in-out;-moz-transition: all 300ms ease-in-out;transition: all 300ms ease-in-out;
}
.go-with-us-box:after{position:absolute;content:'';width: 100%;height: 100%;background-color: #000;opacity: .5;left: 0px;top: 0px;}
.go-with-us-box h5{
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}
.go-with-us-box h5 img{
    width: 130px;
}
.go-with-us-box p{
    margin-bottom: 0px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}
.go-with-us-box h3{
    position: relative;
    z-index: 1;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}
.go-with-us-box-01{
    transform: rotate(352deg);
    z-index: 1;
}
.go-with-us-box-02{  background-image: url(../images/go-with-us2.jpg);}
.go-with-us-box-03{background-image: url(../images/go-with-us3.jpg);transform: rotate(5deg);z-index: 1;}
.go-with-us-box-01:hover{ transform: rotate(360deg); z-index: 2;}
.go-with-us-box-02:hover{ z-index: 2;}
.go-with-us-box-03:hover{ transform: rotate(0deg); z-index: 2;}
.number-counter{padding: 40px 0px 100px;}
.data-progress{display: flex;margin: 0;padding: 0;flex-wrap: wrap;gap: 20px 5%;}
.data-progress li{margin: 0;list-style: none;flex: 0 0 21.25%;padding: 14px;text-align: center;background-color: #063746;border-radius: 15px;position: relative;}
.data-progress li:last-child{ border-right: none; }
.data-progress li h2{margin-bottom: 0px;font-size: 58px;color: var(--white);line-height: 1.2;font-weight: 700;}
.data-progress li p{margin-bottom: 0px;font-size: 18px;color: var(--white);font-weight: 500;}
.data-progress li:after{position: absolute;content: '';background-image: url(../images/icons/ribbon.svg);width: 20px;height: 24px;top: 0px;right: 30px;background-size: 100%;background-repeat: no-repeat;}
.nbr-count-inn{
    padding: 40px 20px;
    border: 1px solid #355d69;
    border-radius: 10px;
}
.testimonials{
    padding: 100px 0px;
    background-image: url(../images/bg2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.testimonials:after{ position: absolute; content: ''; width: 100%; height: 100%; left: 0px; top: 0px; background-color: #000; opacity: .5; z-index: 0;}
.testimonials .container{ position: relative; z-index: 1;}
.testi-wrap{
    padding: 0px 160px 50px;
}
.testi-cnt-hm{
    padding-left: 90px;
    background-image: url(../images/icons/icon5.png);
    background-repeat: no-repeat;
    background-position: top left;
}
.testi-cnt-hm p{
    font-size: 34px;
    font-weight: 500;
    line-height: 42px;
}
.test-name{
    border-top: 1px solid var(--body-color);
    padding-top: 50px;
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 50px;
}
.test-name .testi-img{
    border-radius: 50px;
    overflow: hidden;
    line-height: 0;
}
.test-name h5{
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 0px;
}
.test-name h5 span{
    display: block;
    font-weight: 500;
    color: #ffc425;
}
.download-hm{
    padding: 100px 0px;
	background-image: url(../images/bg3.png);
	background-position: center;
	background-repeat: no-repeat;
}
.download-wrap{
    display: flex;
    gap: 1%;
}
.download-left{
    flex: 0 0 51%;
    padding-top: 15px;
}
.download-left .tittle-head{ margin-bottom: 60px;}
.download-right{
    flex: 0 0 48%;
    position: relative;
    text-align: center;
}
.dowload-icons{
    position: absolute;
    top: 58px;
    left: -19px;
}
.dow-btn{
    display: inline-block;
    background-color: #241f21;
    padding: 10px 15px;
    margin-right: 14px;
    border-radius: 10px;
    line-height: 0;
}
.dow-btn:hover{ background-color: var(--primary-color);}
.notifications{
    background-color: var(--color-03);
}
.notif-wrap{
    display: flex;
}
.notif-left{
    flex: 0 0 50%;
    padding: 80px 35px 80px 0;
    border-right: 1px solid #486069;
}
.notif-left h2, .notif-right h2{
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 70px;
}
.notif-list{
    margin-bottom: 0px;
}
.notif-list li{position: relative;font-weight: 500;border-bottom: 1px solid #486069;padding-bottom: 25px;margin-bottom: 25px;padding-left: 40px;line-height: 24px;}
.notif-list li:after{position: absolute;content: "\f0f3";font-family: 'Font Awesome 6 Free';font-weight: 700;left: 0px;top: 4px;font-size: 18px;color: var(--secondary-color);}
.notif-right{
    flex: 0 0 50%;
    padding: 80px 0px 80px 35px;
}
.news-list{
    padding-bottom: 1px; margin-bottom: 0px;
}
.news-list li{
    display: flex;
    align-items: flex-start;
    gap: 35px;
    border-bottom: 1px solid #486069;
    padding-bottom: 36px;
    margin-bottom: 32px;
}
.news-list li span{
    white-space: nowrap;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--secondary-color);
    padding: 8px 15px;
    border-radius: 50px;
}
.news-list li p{
    margin-bottom: 0px;
}
footer{
    position: relative;
    background-image: url(../images/bg4.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    background-size: cover;
}
footer:after{position: absolute;content: '';width: 100%;height: 115px;left: 0px;top: 0px;background-color: var(--color-03);z-index: 0;}
.footer-top{
    position: relative;
    z-index: 1;
}
.footer-form-wrap{
    background-color: var(--primary-color);
    padding: 12px;
    border-radius: 15px;
}
.footer-form-inn{
    display: flex;
    padding: 50px 30px;
    border: 1px solid #54a6c2;
    border-radius: 10px;
    gap: 1%;
    align-items: center;
}
.ftr-frm-left{
    flex: 0 0 32%;
}
.ftr-frm-left h3{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}
.ftr-frm-left p{
    margin-bottom: 0px;
    line-height: 24px;
}
.ftr-frm-left p a{
    color: var(--body-color);
}
.ftr-frm-right{
    flex: 0 0 67%;
}
.ftr-frm-right-wrap{
    display: flex;
    gap: 1%;
}
.ftr-form{
    flex: 0 0 39.2%;
    position: relative;
    display: flex;
}
.ftr-form i{
    /* position: absolute; */
    width: 76px;
    height: 57px;
    text-align: center;
    line-height: 57px;
    background-color: #3b99b9;
    border-radius: 8px 0px 0px 8px;
}
.ftr-form .fieldset{
    margin-bottom: 0;
    padding-left: 0;
}
.wpcf7-form-control-wrap{ width: 100%;}
.footer-btm{
    margin-top: 80px;
}
.footer-btm-wrap{
    display: flex;
    gap: 1%;
    flex-wrap: wrap;
    padding-bottom: 35px;
}
.ftr-contact{
    display: flex;
    gap: 14px;
    margin-bottom: 25px;
}
.ftr-contact i{
    flex: 0 0 43px;
    height: 43px;
    background-color: var(--color-04);
    border-radius: 50px;
    text-align: center;
    line-height: 43px;
}
.ftr-call-right span{
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}
.ftr-call-right a{
    font-size: 16px;
    font-weight: 700;
    display: block;
    color: var(--body-color);
    line-height: 28px;
}
.ftr-col{
    flex: 0 0 24.25%;
}
.ftr-logo{
    margin-bottom: 20px;
}
.ftr-logo img{
    width: 223px;
}
.ftr-head{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
.ftr-list li{
    margin-bottom: 8px;
}
.ftr-list li a{
    font-size: 14px;
    color: var(--body-color);
}
.copyright{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ffffff40;
    padding: 25px 0px;
}
.copyright p{
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 500;
}
.copyright p a{
    color: var(--body-color);
}
footer a:hover{ color: var(--color-04);}
.social a{
    width: 47px;
    height: 47px;
    background-color: #1877f2;
    color: var(--body-color);
    font-size: 20px;
    text-align: center;
    line-height: 47px;
    border-radius: 50px;
    display: inline-block;
}
.social .insta{ background: linear-gradient(45deg,  rgba(255,154,8,1) 0%,rgba(251,55,148,1) 49%,rgba(48,41,128,1) 100%);     }
.social a:hover{ color: var(--body-color); background: var(--color-04);}
.pad{ padding: 80px 0px; background-color: var(--color-03);}
.heading{ font-size: 38px;font-weight: 700; margin-bottom: 30px;}
.msn-vsn-wrap{
    display: flex;
    gap: 20px 2%;
    margin-top: 30px;
}
.msn-vsn-box{
    flex: 0 0 32%;
    background-color: var(--color-04);
    padding: 30px;
    border-radius: 15px;
    position: relative;
}
.msn-vsn-box:after{position: absolute;content: '';width: 4px;height: 40px;left: 0px;top: 30px;background-color: var(--body-color);}
.msn-vsn-box h2{
    font-size: 28px;
    font-weight: 600;
    border-bottom: 1px solid #00873d;
    padding-bottom: 15px;
}
.msn-vsn-box p{
    margin-bottom: 0;
}
.intro-right-inn img, .intro-right-inn{ border-radius: 15px;  }
.intro-right-inn{ overflow: hidden;}
.courses-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 25px 2%;
}
.courses-wrap .prog-box{
    flex: 0 0 32%;
}
.courses-wrap .prog-cnt h3 {
   
    font-size: 20px;}
.courses-wrap .prog-cnt p {
    font-size: 14px;
 
    line-height: 24px;}
.exm-logos-wrap{
    display: flex;
    gap: 20px 2%;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.exm-logos-wrap li{
    flex: 0 0 23.5%;
    text-align: center;
    border: 1px solid var(--body-color);
    padding: 10px;
    border-radius: 15px;
    -webkit-transition: all 300ms ease-in-out;-moz-transition: all 300ms ease-in-out;transition: all 300ms ease-in-out;
}
.exm-logos{
    background-color: var(--body-color);
    padding: 20px 10px;
    border-radius: 10px;
}
.exm-logos-wrap li h5{
    margin-bottom: 0px;
    padding: 15px 10px;
    font-weight: 600;
    font-size: 15px;
}
.exm-logos-wrap li:hover{ background-color: var(--color-04); border: 1px solid var(--color-04);}
.form-group{
    position: relative;
    flex: 0 0 32%;
    margin-bottom: 12px;
    display: flex;
  }
  .form-group .selectbox{
    padding-left: 70px;
  }
  .form-group i{
    /* position: absolute; */
    /* left: 0px; */
    /* top: 0px; */
    width: 57px;
    height: 57px;
    text-align: center;
    line-height: 55px;
    border-right: 1px solid #5fb5d3;
    color: var(--body-color);
    font-size: 15px;
    z-index: 1;
    background-color: #3b99b9;
    border-radius: 8px 0px 0px 8px;
  }
  .form-group-two{flex: 0 0 49%;}
  .form-group-textarea i{ height: 140px; }
  .contactstyle {
      width: 100%;
      display: inline-block;
      position: relative;
      margin: 0 0 12px;
      padding: 30px 20px;
      background-color: var(--color-04);
      border-radius: 15px;
  }
  
  .career-form {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}
  

  .form-group.file label {
    display: block;
    margin-bottom: 9px;
  }
  .form-group.file {
    margin-bottom: 25px;
  }
    
  
  
  
  .coic, .contactstyle a:hover, .label-style {
      color: var(--secondary-color)
  }
  .coic {
      position: absolute;
      left: 0;
      top: 0;
      width: 40px;
      background-color: var(--body-color);
      font-size: 16px;
      border-radius: 50px;
      -moz-border-radius: 50px;
      -webkit-border-radius: 50px;
      -ms-border-radius: 50px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .coic, .out-inn-links a {
      line-height: 41px;
      height: 40px;
      color: var(--primary-color);
  }
  .contactstyle h4 {
      font-size: 16px;
      margin-bottom: 6px;
      font-weight: 700;
  }
  .contactstyle p {
      margin-bottom: 0;
      font-size: 14px;
      line-height: 22px;
  }
  .contactstyle p a{color:var(--white)}
  .contact-left {
      flex: 0 0 30%
  }
  .cont-inn-box{position: relative;padding: 0 0 12px 60px;margin-bottom: 12px;border-bottom: 1px solid #65d397;}
  .cont-inn-box:last-child{margin-bottom:0px;border-bottom: none;padding-bottom: 0px;}
  .contactstyle h3{
      font-weight: 700;
      font-size: 20px;
      border-bottom: 1px solid #65d397;
      padding-bottom: 15px;
      margin-bottom: 20px;
  }
  .contact-right {
      flex: 0 0 67%
  }
  .map {
      display: flex;
      margin-top: 50px
      
  }
  .form-group-full{ flex: 0 0 100%;}
.contact-right .heading{ margin-bottom: 10px;}
.gallery-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 2%;
}
.glr-box{
    flex: 0 0 23.5%;
    border-radius: 10px;
    overflow: hidden;
}
.course-detail-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
}
.course-detail-left{
    flex: 0 0 35%;
}
.course-detail-left .hover-effect{
    border-radius: 15px;
    position: sticky;
    top: 100px;
}
.course-detail-right{
    flex: 0 0 61%;
}
.course-detail-inn{
    border: 1px solid var(--body-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}
.course-detail-inn h5{
    margin-bottom: 15px;
}
.course-detail-inn h5 span{
    background-color: var(--color-04);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
}
.course-detail-inn h1{
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 10px;
}
.course-detail-inn h3{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
}
.cors-tittle{
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
}
.m-b-12{ margin-bottom: 12px !important;}
.testi-inn-wrap .testi-cnt-hm{
    border-bottom: 1px solid var(--white);
    margin-bottom: 90px;
    padding-bottom: 40px;
}
.testi-inn-wrap .testi-cnt-hm p{
    font-size: 20px;
    line-height: 32px;
}
.testi-inn-wrap .test-name{
    margin-top: 30px;
    border-top: 1px solid #2f5665;
    padding-top: 15px;
}

/*************** INNER BANNER ***************/
.banner-wrap{position: relative;}
.banner-wrap:after{position: absolute;content: '';width: 100%;height: 100px;left: 0px;bottom: 0px;background-color: var(--color-03);z-index: -1;}
.banner{display: flex;z-index: 0;width: 100%;height: 200px;align-items: center;background-image: url(../images/banner.jpg);background-position: center;background-repeat: no-repeat;position: relative;background-size: cover;border-radius: 20px;/* padding: 30px 30px 20px; */justify-content: center;}
.banner-caption h2{color: var(--white);font-size: 34px;margin-bottom: 5px;line-height: 44px;font-weight: 600;}
.banner-caption h4 span{color: var(--white);font-size: 11px;}
.banner-caption h4 a{color: var(--white);font-size: 11px;}
.banner-caption h4 a:hover{ color: var(--primary-color);  }
.banner-caption h4 {padding: 0px 0px;display: flex;margin-bottom: 0px;align-items: center;text-transform: uppercase;letter-spacing: 1px;justify-content: center; font-size: 11px;}
.banner-caption{position: relative;z-index: 1;margin-bottom: 0;}
.banner-caption h4 span.b-sep{position: relative;width: 30px;}
.banner-caption h4 span.b-sep:after{position: absolute;content: "\f178";font-family: 'Font Awesome 6 Free';font-weight: 900;left: 9px;top: -6px;}

/********* FIXED HEADER ***************/
header.smaller{position: fixed; left: 0px; top: 0px; width: 100%; z-index: 10; -webkit-transition: all 300ms ease-in-out;-moz-transition: all 300ms ease-in-out;transition: all 300ms ease-in-out;top: 0;
box-shadow: 0px 1px 25px #0000003d; background-color: #004960; }

/*** animatins ***/
@-webkit-keyframes scroll {
	0% {
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	}
	to {
	  -webkit-transform: translateX(-webkit-calc(-250px * 7));
	  transform: translateX(-1750px);
	}
  }
  @-moz-keyframes scroll {
	0% {
	  -moz-transform: translateX(0);
	  transform: translateX(0);
	}
	to {
	  -moz-transform: translateX(-moz-calc(-250px * 7));
	  transform: translateX(-1750px);
	}
  }
  @keyframes scroll {
	0% {
	  -webkit-transform: translateX(0);
	  -moz-transform: translateX(0);
	  transform: translateX(0);
	}
	to {
	  -webkit-transform: translateX(-webkit-calc(-250px * 7));
	  -moz-transform: translateX(-moz-calc(-250px * 7));
	  transform: translateX(-1750px);
	}
  }
  @-webkit-keyframes scrollLeft {
	0% {
	  -webkit-transform: translateX(-webkit-calc(-250px * 7));
	  transform: translateX(-1750px);
	}
	to {
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	}
  }
  @-moz-keyframes scrollLeft {
	0% {
	  -moz-transform: translateX(-moz-calc(-250px * 7));
	  transform: translateX(-1750px);
	}
	to {
	  -moz-transform: translateX(0);
	  transform: translateX(0);
	}
  }
  @keyframes scrollLeft {
	0% {
	  -webkit-transform: translateX(-webkit-calc(-250px * 7));
	  -moz-transform: translateX(-moz-calc(-250px * 7));
	  transform: translateX(-1750px);
	}
	to {
	  -webkit-transform: translateX(0);
	  -moz-transform: translateX(0);
	  transform: translateX(0);
	}
  }

/**********forms**************/
form{margin:0;padding:0;}
*:focus {outline: none;}
.fieldset{width:100%;height: 57px;padding: 8px 15px;background-color: #3b99b9;display:block;border: 1px solid #3b99b9;margin: 0;color: var(--body-color);font-size: 15px;border-radius: 0 8px 8px 0;-moz-border-radius: 0 8px 8px 0;-ms-border-radius: 0 8px 8px 0;-webkit-border-radius: 0 8px 8px 0;font-weight: 500;padding-left: 22px;}
textarea.fieldset, textarea{ height: 140px; }
.sendbutton{width:auto;height: auto;border:0;outline:0;margin:0 5px 0 0;display: inline-block; color:var(--white);font-size: 22px;cursor:pointer;vertical-align:top;padding: 14px 25px 16px;text-align:center;background-color: var(--secondary-color);text-transform:uppercase;border-radius: 8px;font-weight: 700;}
.sendbutton:hover{background-color:var(--color-02);color:var(--white);}
::-webkit-input-placeholder {color: var(--body-color) !important;}
:-moz-placeholder {color: var(--body-color) !important;}
::-moz-placeholder { color: var(--body-color) !important;}
:-ms-input-placeholder { color: var(--body-color) !important;}

/*************HOVER EFFECT*******/
.hover-effect{width:100%;display: block;position:relative;overflow:hidden;}
.hover-effect i{width:50px;height:50px;background-color:var(--primary-color);color:var(--white);position:absolute;left:50%;top:-100px;z-index:1;line-height:50px;
text-align:center;margin:0 0 0 -25px;-webkit-transition: all 300ms ease-in-out;-moz-transition: all 300ms ease-in-out;transition: all 300ms ease-in-out;}
.hover-effect:hover i{top:50%;margin:-25px 0 0 -25px;}
.hover-effect:hover i:hover{background-color:var(--secondary-color);}
.hover-effect img {display:block;-webkit-transition: all 300ms ease-in-out;-moz-transition: all 300ms ease-in-out;transition: all 300ms ease-in-out;width:100%;}
.hover-effect:hover img {-moz-transform: scale(1.1, 1.1);-ms-transform: scale(1.1, 1.1); -webkit-transform: scale(1.1, 1.1);transform: scale(1.1, 1.1);}

/*************BACK TO TOP*******/
.progress-wrap {position: fixed;right: 10px;bottom: 10px;height: 45px;width: 45px;cursor: pointer;display: block;border-radius: 50px;
z-index: 99;opacity: 0;visibility: hidden;transform: translateY(15px);-webkit-transition: all 200ms linear;transition: all 200ms linear;}
.progress-wrap.active-progress {opacity: 1;visibility: visible;transform: translateY(0);}
.progress-wrap::after {position: absolute;content: "\f30c";font-family: 'Font Awesome 5 Free';font-weight: 900;text-align: center;line-height: 45px;
font-size: 20px;color: var(--color-04);left: 0;top: 0;height: 45px;width: 45px;cursor: pointer;display: block;z-index: 1;-webkit-transition: all 200ms linear;
transition: all 200ms linear;}
.progress-wrap svg path {fill: none;}
.progress-wrap svg.progress-circle path {stroke: var(--color-04);stroke-width: 4;box-sizing:border-box;-webkit-transition: all 200ms linear;transition: all 200ms linear;}


/************************************* 1366px *************************************/
@media only screen and (max-width: 1366px) {
.data-progress li h2{ font-size: 50px;}
}

/************************************* 1330px *************************************/
@media only screen and (max-width: 1330px) {
.container{ width:95%;}
}

/************************************* 1180px *************************************/
@media only screen and (max-width: 1180px) {
.data-progress li { flex: 0 0 23.5%;}
.data-progress { gap: 20px 2%;}
.data-progress li h2{ font-size: 36px;}
.data-progress li p { font-size: 16px;}
}

/************************************* 1024px *************************************/
@media only screen and (max-width: 1024px) {
.container{ width:90%;}
.go-with-us-box{ padding: 30px 10px;}
.go-with-us-box-01, .go-with-us-box-02, .go-with-us-box-03, .go-with-us-box-01:hover, .go-with-us-box-02:hover, .go-with-us-box-03:hover { transform: rotate(0deg);}
.testi-wrap { padding: 0px 0px 50px;}
.tittle-head { font-size: 28px;}
.ftr-frm-left{ flex: 0 0 100%; text-align: center; margin-bottom: 30px;}
.footer-form-inn{ flex-direction: column;}
.ftr-col {flex: 0 0 49.5%;}
.go-with-us-wrap { gap: 1%;}
.go-with-us-box { flex: 0 0 32.66666%;}
.testi-cnt-hm p { font-size: 28px;  line-height: 40px;}
.news-list li{ flex-direction: column; gap: 15px;}
.contact-left { flex: 0 0 42%;}
.contact-right {
    flex: 0 0 55%;
}
}

/************************************* 980px *************************************/
@media only screen and (max-width: 980px) {
.scroll-right-left h2, .scroll-left-right h2 { font-size: 36px;}
.prog-cnt span{ display: none;}
.go-with-us-wrap{ margin-top: 70px;}
.data-progress li { padding: 8px;}
.nbr-count-inn { padding: 30px 10px;}
.data-progress li h2 { font-size: 28px;}
.data-progress li p { font-size: 12px;}
.glr-box {
    flex: 0 0 32%;}
.exm-logos-wrap li {
    flex: 0 0 32%;}
.exm-logos img{ height: auto;}
}

/************************************* 900px *************************************/
@media only screen and (max-width: 900px) {
.courses-wrap .prog-box {flex: 0 0 49%;}
}

/************************************* 767px *************************************/
@media only screen and (max-width: 767px) {
.two-col, .three-col, .four-col, aside, summary{ flex:0 0 100%; margin:0 0 25px 0; }
.header-wrap{ flex-wrap: wrap;}
.right-header { flex: 0 0 100%;justify-content: space-between;border-top: 1px solid #1c5164; margin-top: 10px; padding-top: 10px;}
header { padding: 12px 0px;}
.whats-join .join-btn { font-size: 12px; padding: 12px 34px 12px 15px;}
.whats-join .join-btn:after{font-size: 15px; right: 4px; margin-top: -14px;}
.whats-join .whts-btn { width: 40px; height: 40px; font-size: 26px; line-height: 41px;}
header.smaller .right-header{ display: none;}
.whats-join { gap: 10px;}
.intro-wrap {flex-direction: column; align-items: center;}
.intro-left{ margin-bottom: 30px;}
.tittle-head { font-size: 22px;}
.prog-ofd{ padding: 60px 15px;}
.go-with-us-wrap, .download-wrap, .notif-wrap, .msn-vsn-wrap{ flex-direction: column;}
.go-with-us-box{ margin-bottom: 20px; min-height: 420px;}
.go-with-us-box{ padding: 30px;}
.number-counter {  padding: 40px 0px 50px;}
.download-left{ margin-bottom: 30px;}
.download-hm{ padding: 60px 0px;}
.notif-left{ border-right: none;}
.notif-left{ padding: 80px 0px;}
.notif-right{ padding: 0 0 80px;}
.ftr-form-btn{ flex: 0 0 100%;}
.ftr-frm-right-wrap{ flex-wrap: wrap;}
.ftr-form { flex: 0 0 49.5%;}
.ftr-form-btn .sendbutton{ width: 100%;}
.ftr-form-btn{ margin-top: 10px;}
.courses-wrap .prog-cnt h3 { font-size: 18px;}
.courses-wrap .prog-cnt p { font-size: 14px;}
.row{ flex-direction: column;}
.contact-left{ margin-bottom: 40px;}
.course-detail-wrap{ flex-direction: column;}
.course-detail-left{ margin-bottom: 30px;}
.course-detail-left .hover-effect { position: initial;}
.exm-logos-wrap li h5 {     font-size: 14px;

    padding: 15px 0px;}
.heading {
    font-size: 24px;}
}

/************************************* 575px *************************************/
@media only screen and (max-width: 575px) {
.gap-50{ height: 25px;}
.gap-100{ height: 50px;}
.scroll-right-left h2, .scroll-left-right h2 {font-size: 28px;}
.intro { padding: 40px 0px 50px;}
.tittle-head { font-size: 20px; line-height: 28px;}
.intro-left p { font-size: 15px; line-height: 26px;}
.go-with-us{ padding: 50px 0px;}
.data-progress li {flex: 0 0 49%;}
.data-progress { gap: 10px 2%;}
.testimonials {padding: 50px 0px 20px;}
.testi-cnt-hm p { font-size: 18px; line-height: 28px;}
.testi-cnt-hm { padding-left: 50px; background-size: 30px;}
.notif-left h2, .notif-right h2 { font-size: 34px;  margin-bottom: 40px;}
.notif-right{ padding-bottom: 40px;}
.ftr-form{ flex: 0 0 100%; margin-bottom: 10px;}
.copyright{ flex-direction: column; text-align: center;}
.copyright p {margin-bottom: 15px;}
.courses-wrap .prog-img, .courses-wrap .prog-cnt { padding: 15px;}
.courses-wrap .prog-cnt p { font-size: 12px; line-height: 22px;}
.courses-wrap .prog-cnt h3 {font-size: 16px;margin-bottom: 15px;}
.pad{ padding: 40px 0px;}
.banner { height: 150px;}
.banner-caption h2 { font-size: 28px; line-height: 34px;}
.banner-wrap:after {  height: 80px;}
.career-form{ flex-direction: column;}
.glr-box {
    flex: 0 0 49%;}
    .course-detail-inn h1 {
   
        font-size: 26px;}
        .exm-logos-wrap li {
        flex: 0 0 49%;
    }
.testi-inn-wrap .testi-cnt-hm {

    margin-bottom: 60px;}
}

/************************************* 480px *************************************/
@media only screen and (max-width: 480px) {
.certi-slogos-wrap { padding: 12px;}
.right-header .call { gap: 6px;}
.right-header .call .call-inn span { font-size: 11px; font-weight: 400;}
.right-header .call .call-inn { font-size: 13px;}
.right-header{ gap:0px;}
.prog-cnt h3{ font-size: 18px;}
.prog-cnt p{ font-size: 14px;}
.prog-cnt, .prog-img{ padding: 20px;}
.dow-btn{ margin-bottom: 10px;}
.footer-form-inn { padding: 20px 15px;}
#status{ background-size: 260x;}
.courses-wrap{ flex-direction: column;}
.banner { height: 120px;}
.banner-caption h2 {
    font-size: 22px;
    line-height: 28px;
}
.banner-wrap:after {
    height: 65px;
}
.exm-logos-wrap {

    gap: 10px 2%;}
        .heading {
        font-size: 22px;
    }
.testi-inn-wrap .testi-cnt-hm p {
    font-size: 16px;
    line-height: 28px;
}
}

/************************************* 360px *************************************/
@media only screen and (max-width: 360px) {
.right-header .call .call-inn { font-size: 12px; }
.whats-join .join-btn { font-size: 12px; padding: 12px 8px 12px 8px;}
.whats-join .join-btn:after{ display: none;}
.exm-logos-wrap{ flex-direction: column;}


}

/************************************* 320px *************************************/
@media only screen and (max-width: 320px) {
}